home *** CD-ROM | disk | FTP | other *** search
/ Ultimedia 1 / Ultimedia 1.iso / tools / grafiktools / superview / arexxdemo.rx next >
Text File  |  1994-06-06  |  758b  |  37 lines

  1. /*
  2.    $VER: SuperView_ARexx_Demo V3.1 (5.6.94)
  3.    © 1993-94 by Andreas R. Kleinert
  4.    This is an - quite primitive - example how to access
  5.    SuperView's ARexx port from within an ARexx-Script.
  6.  
  7. */
  8.  
  9. address command
  10.  
  11. SuperView "-INSTALL_APPMENU=FALSE -INSTALL_APPICON=FALSE"
  12.  
  13. say ""
  14. say "ARexx : SuperView has been started : Waiting three seconds ..."
  15.  
  16. wait 3
  17.  
  18. say "ARexx : Loading a GIF Graphics via the LOAD command"
  19. address 'SuperView.rx' "LOAD=SuperView.GIF"
  20. say "ARexx : Saving Graphics as IFF-ILBM (CmpByteRun1)"
  21.  
  22. address 'SuperView.rx' "SAVE_ILBM1=SuperView.ilbm"
  23.  
  24. wait 3
  25.  
  26. say "ARexx : Load this IFF-ILBM Gfx now for control"
  27.  
  28. address 'SuperView.rx' "SHOW=SuperView.ilbm"
  29.  
  30. say "ARexx : O.K. : Let's quit !"
  31.  
  32. Wait 2
  33.  
  34. address 'SuperView.rx' "QUIT"
  35.  
  36. exit
  37.